23a0809b46ed2ca678f445372aa706645a5c7ee5,platform/platform-api/src/com/intellij/execution/process/ColoredOutputTypeRegistry.java,ColoredOutputTypeRegistry,getOutputKey,#String#,92

Before Change


      }
    }
    if (attrs.getEffectType() == EffectType.LINE_UNDERSCORE) {
      attrs.setEffectColor(attrs.getForegroundColor());
    }
    Key newKey = new Key(completeAttribute);
    ConsoleViewContentType contentType = new ConsoleViewContentType(completeAttribute, attrs);

After Change


      }
    }
    if (attrs.getEffectType() == EffectType.LINE_UNDERSCORE) {
      Color foregroundColor = attrs.getForegroundColor();
      if (foregroundColor == null) {
        foregroundColor = getDefaultForegroundColor();
      }
      attrs.setEffectColor(foregroundColor);